Logs message to KonsolScript log file.
String message - any value that could help you debug your game/program.
Useful for debugging game/program.
Will only work if NOLOGFILE is set to 1 in konfig.cfg file.
function main() {
Var:Number x;
Math:Random(0, 100, x)
Konsol:Log("x's value is " + x) //logs the message "x's value is 3" (if x is 3)
}